home *** CD-ROM | disk | FTP | other *** search
/ HamCall (October 1991) / HamCall (Whitehall Publishing)(1991).bin / prgming / ada / prior.pro < prev    next >
Text File  |  1987-10-19  |  4KB  |  73 lines

  1.  
  2. -------- SIMTEL20 Ada Software Repository Prologue ------------
  3. --                                                           -*
  4. -- Unit name    : generic package PRIORITIZED_QUEUE
  5. -- Version      : 1.0
  6. -- Author       : John A. Anderson
  7. --              : TEXAS INSTRUMENTS MS 8006
  8. --              : P.O. BOX 801
  9. --              : MCKINNEY, TEXAS   75069
  10. -- DDN Address  : ANDERSON%TI-EG@CSNET-RELAY
  11. -- Copyright    : (c) 1984 John A. Anderson
  12. -- Date created :  OCTOBER  2, 1984
  13. -- Release date :  NOVEMBER 27, 1984
  14. -- Last update  :  ANDERSON Wed Nov 27, 1984
  15. --                                                           -*
  16. ---------------------------------------------------------------
  17. --                                                           -*
  18. -- Keywords     :  QUEUE
  19. ----------------:  PRIORITIZED QUEUE
  20. --
  21. -- Abstract     :  This generic package creates a Prioritized
  22. ----------------:  Queue of objects. The Queue is First-In,
  23. ----------------:  First-Out except where overridden by the
  24. ----------------:  priority.
  25. ----------------:  The priority may be any discrete type.
  26. ----------------:  It is assumed that the priorities are from
  27. ----------------:  lowest to highest.  The type of data structure
  28. ----------------:  to be instantiated for the queue may be any
  29. ----------------:  type having assignment and equality.  Other
  30. ----------------:  types may be enqueued by using access types.
  31. ----------------:  (i.e. Access variable pointing to a task.)
  32. ----------------:  The space for the Queue is allocated dynamically
  33. ----------------:  with garbage collection left up to the target
  34. ----------------:  system.
  35. --                                                           -*
  36. ------------------ Revision history ---------------------------
  37. --                                                           -*
  38. -- DATE         VERSION    AUTHOR                  HISTORY
  39. -- 11/27/84      1.0    Anderson        Initial Release
  40. --                                                           -*
  41. ------------------ Distribution and Copyright -----------------
  42. --                                                           -*
  43. -- This prologue must be included in all copies of this software.
  44. --
  45. -- This software is copyright by the author.
  46. --
  47. -- This software is released to the Ada community.
  48. -- This software is released to the Public Domain (note:
  49. --   software released to the Public Domain is not subject
  50. --   to copyright protection).
  51. -- Restrictions on use or distribution:  NONE
  52. --                                                           -*
  53. ------------------ Disclaimer ---------------------------------
  54. --                                                           -*
  55. -- This software and its documentation are provided "AS IS" and
  56. -- without any expressed or implied warranties whatsoever.
  57. -- No warranties as to performance, merchantability, or fitness
  58. -- for a particular purpose exist.
  59. --
  60. -- Because of the diversity of conditions and hardware under
  61. -- which this software may be used, no warranty of fitness for
  62. -- a particular purpose is offered.  The user is advised to
  63. -- test the software thoroughly before relying on it.  The user
  64. -- must assume the entire risk and liability of using this
  65. -- software.
  66. --
  67. -- In no event shall any person or organization of people be
  68. -- held responsible for any direct, indirect, consequential
  69. -- or inconsequential damages or lost profits.
  70. --                                                           -*
  71. -------------------END-PROLOGUE--------------------------------
  72.  
  73.